KoneMutableLinkedSet
Represents a composition of Equality context, an unordered collection of elements without repetitions with respect to the equality context with possibility to add and remove elements from it, and structure of a linked list on the elements of the collection.
However, the order of elements in the linked structure may be defined in different ways. For example, it may be a chronological order (i.e. new elements are added to the end of the order and reconstruction of the set won't change the order). Or an order corresponding to the inner structure of the set (for example, in the order induced by som specified Order, and reconstruction of the set will change the order). See implementations' documentations to get the behaviour you need.
Inheritors
Properties
Functions
Adds elements builder(0u)
, builder(1u)
, ..., builder(number-1u)
to the collection. Each element is added iff there is no equal to it element in the collection already.
Checks if the iterable is not empty.
Iterator over elements of the collection. There must be exactly size number of elements in it.
Removes all elements satisfying the predicate from the collection.